home *** CD-ROM | disk | FTP | other *** search
/ 2500 Suonerie / 2500 suonerie.iso / TOOLS / Ringtone composer / note_syntax.tx_ / note_syntax.tx
Text File  |  1998-09-06  |  1KB  |  76 lines

  1. ;
  2. ; Ringing Tones text transfer language (RTTTL)
  3. ;
  4. ; Version 1.0 / 29-July-1998
  5. ; - First version by John Mostelo
  6. ; http://members.tripod.com/~ringtones/note_syntax.txt
  7. ;
  8.  
  9. <ringing-tones-text-transfer-language> :=
  10.        <name> <sep> [<defaults>] <sep> <note-command>+
  11.  
  12. <name> := <char>+    ; maximum name length 10 characters
  13.  
  14. <sep> := ":"
  15.  
  16. <defaults> := 
  17.       <def-note-duration> |
  18.       <def-note-scale> |
  19.       <def-beats> 
  20.  
  21. <def-note-duration> := "d=" <duration>
  22.  
  23. <def-note-scale> := "o=" <scale> 
  24.  
  25. <def-beats> := "b=" <beats-per-minute>
  26.  
  27. <beats-per-minute> := 25,28,...,900   ; decimal value
  28.  
  29. ; If not specified, defaults are
  30. ;
  31. ;  4   = duration
  32. ;  6   = scale   
  33. ;  63  = beats-per-minute
  34.  
  35.  
  36. <note-command> :=
  37.       [<duration>] <note> [<scale>] [<special-duration>] <delimiter>
  38.  
  39.  
  40. <duration> :=
  41.       "1"  |  ; Full 1/1 note
  42.       "2"  |  ; 1/2 note
  43.       "4"  |  ; 1/4 note
  44.       "8"  |  ; 1/8 note
  45.       "16" |  ; 1/16 note
  46.       "32" |  ; 1/32 note
  47.      
  48. <note> :=
  49.       "P"  |  ; pause
  50.       "C"  |
  51.       "C#" |
  52.       "D"  |
  53.       "D#" |
  54.       "E"  |
  55.       "F"  |
  56.       "F#" |
  57.       "G"  |
  58.       "G#" |
  59.       "A"  |
  60.       "A#" |
  61.       "H"         
  62.  
  63. <scale> :=
  64.       "5" |   ; Note A is 440Hz
  65.       "6" |   ; Note A is 880Hz
  66.       "7" |   ; Note A is 1.76 kHz
  67.       "8"     ; Note A is 3.52 kHz
  68.  
  69. <special-duration> :=
  70.       "."     ; Dotted note
  71.  
  72. <delimiter> := ","
  73.  
  74. ; End of specification
  75.